alter table "Location"
add "NameLoc" character varying(10)


 update "Location"
 set "NameLoc"= 'BK'
 where "LocationId"=1


 update "Location"
 set "NameLoc"= 'BH'
 where "LocationId"=2

 update "Location"
 set "NameLoc"= 'HG'
 where "LocationId"=3

 update "Location"
 set "NameLoc"= 'MP'
 where "LocationId"=4

